home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
223_01
/
isxdigit.c
< prev
next >
Wrap
Text File
|
1980-01-01
|
384b
|
10 lines
/*
** return 'true' if c is a hexadecimal digit
** (0-9, A-F, or a-f)
*/
isxdigit(c) int c; {
return ((c<='f' && c>='a') ||
(c<='F' && c>='A') ||
(c<='9' && c>='0'));
}